
begintalkscript;

variables;

begintalknode 10;
	state = -1;
	nextstate = 10;
	question = "Brother Coldgale";
	text1 = "The druid sitting at the fire gazes at you coldly.";
	text2 = "_Greetings, adventurers. I am Brother Coldgale._";
	text5 = "Brother Coldgale waits for you to say something.";
	text6 = "_Yes?_";
	action = INTRO;

begintalknode 11;
	state = 10;
	nextstate = -1;
	condition = (get_flag(1,4) != 1);
	question = "Why are you out here in the middle of nowhere?";
	text1 = "_Just watching the sky. Meditating._";
	code = 
		set_flag(1,2,1);
	break;
begintalknode 12;
	state = 10;
	nextstate = -1;
	condition = ((get_flag(1,3) == 1) && (get_flag(1,4) != 1));;
	question = "Brother Elm has told us about the Sanctum. May we enter?";
	text1 = "_Of course you may enter. And good luck with your quest. The Order depends on you finding Ephesos._";
	text2 = "_The entrance is hidden behind an illusory stone wall, so just walk right through the wall to the northwest of me._";
	code = 
		set_flag(1,0,1); //Allow entry to Sanctum
		set_flag(1,4,1); //Keep this node from reappearing
	break;
begintalknode 13;
	state = 10;
	nextstate = -1;
	condition = (get_flag(1,4) == 1);
	question = "What are you doing?";
	text1 = "_Just watching the forest. Meditating._";

